home *** CD-ROM | disk | FTP | other *** search
- Path: uni-paderborn.de!usenet
- From: ths@uni-paderborn.de (Thomas Schwoeppe)
- Newsgroups: comp.sys.amiga.programmer
- Subject: Probleme mit MUI/busy.mcc
- Date: 8 Mar 1996 09:28:48 GMT
- Organization: University of Paderborn, Germany
- Distribution: world
- Message-ID: <4houkg$h57@news.uni-paderborn.de>
- Reply-To: ths@uni-paderborn.de
- NNTP-Posting-Host: hurricane.uni-paderborn.de
-
-
- Hi!
- I've found a problem/bug using the busy.mcc class for MUI 3.x.
-
- When I create an object of busy.mcc in my application object by:
-
- App = ApplikationObject,
- [ ... ]
- MCC_busy = BusyObject,
- MUIA_Busy_Speed, MUIV_Busy_Speed_Off,
- End,
- [ ... ]
-
- it appears as expected (BTW, is it normal that the first segment is already
- drawn?).
- But, when I try to start it via:
-
- SetAttrs(MCC_busy, MUIA_Busy_Speed, MUIV_Busy_Speed_User, TAG_DONE);
- /* Do some stuff */
- SetAttrs(MCC_busy, MUIA_Busy_Speed, MUIV_Busy_Speed_Off, TAG_DONE);
-
- it just won't start. The above code should do the following:
- Start being busy, do some stuff, stop being busy.
- Any ideas what I might be doing wrong? A short non-working example
- is available on request.
-
-
- Thomas Schwoeppe <ths@uni-paderborn.de>
-
-
-